home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / STUTTGART / UNIXTOOL / GNU / GNUDBM / GNUDBM~ / <tarZ$use> / files / GNUDbm / C / Gdbmclose < prev    next >
Text File  |  1990-03-01  |  2KB  |  53 lines

  1. /* gdbmclose.c - Close a previously opened dbm file. */
  2.  
  3. /*  GNU DBM  - DataBase Manager (database subroutines) by Philip A. Nelson
  4.     Copyright (C) 1989  Free Software Foundation, Inc.
  5.  
  6.     This program is free software; you can redistribute it and/or modify
  7.     it under the terms of the GNU General Public License as published by
  8.     the Free Software Foundation.
  9.  
  10.     This program is distributed in the hope that it will be useful,
  11.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.     GNU General Public License for more details.
  14.  
  15.     You should have received a copy of the GNU General Public License
  16.     along with this program; if not, write to the Free Software
  17.     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  18.  
  19.     You may contact the author by:
  20.        e-mail:  phil@wwu.edu
  21.       us-mail:  Philip A. Nelson
  22.                 Computer Science Department
  23.                 Western Washington University
  24.                 Bellingham, WA 98226
  25.         phone:  (206) 676-3035
  26.  
  27. *************************************************************************/
  28.  
  29. #include "gdbm.h"
  30. #include "extern.h"
  31. #include "gdbmutils.h"
  32.  
  33. #include <stdio.h>
  34. #include <stdlib.h>
  35.  
  36. /* Close the dbm file and free all memory associated with the file DBF.
  37.    Before freeing members of DBF, check and make sure that they were
  38.    allocated.  */
  39.  
  40. void gdbm_close(dbm_file_info * dbf)
  41. {
  42.     /* Close the file and free all malloced memory. */
  43.     fclose(dbf->desc);
  44.     free(dbf->name);
  45.     if (dbf->dir != NULL)
  46.         free(dbf->dir);
  47.     if (dbf->bucket != NULL)
  48.         free(dbf->bucket);
  49.     if (dbf->avail != NULL)
  50.         free(dbf->avail);
  51.     free(dbf);
  52. }
  53.